home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxxfont.h < prev    next >
C/C++ Source or Header  |  1996-10-25  |  7KB  |  168 lines

  1. /* Copyright (C) 1992, 1993, 1994, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxxfont.h */
  20. /* External font interface for Ghostscript library */
  21. #include "gsccode.h"
  22. #include "gsmatrix.h"
  23. #include "gsuid.h"
  24. #include "gsxfont.h"
  25.  
  26. /*
  27.  *            Design issues for external fonts
  28.  *
  29.  * 1. Where do xfonts come from: a device or a font service?
  30.  *
  31.  * 2. Is a given xfont associated with a particular device, or with a
  32.  *    class of devices, which may have different output media?
  33.  *    (Specifically, Windows displays vs. printers.)
  34.  *
  35.  * 3. Is an xfont a handle that must be interpreted by its originator,
  36.  *    or an object with its own set of operations?
  37.  *
  38.  * 4. Are xfonts always transformation-specific, or is there such a thing
  39.  *    as a scalable xfont?
  40.  *
  41.  * 5. What is the meaning of the transformation matrix supplied when
  42.  *    asking for an xfont?
  43.  *
  44.  *            Answers (for the current design)
  45.  *
  46.  * 1. Devices supply xfonts.  Internal devices (image, null, clipping,
  47.  *    command list, tracing) forward font requests to a real underlying
  48.  *    device.  File format devices should do the same, but right now
  49.  *    they don't.
  50.  *
  51.  * 2. An xfont is not associated with anything: it just provides bitmaps.
  52.  *    Since xfonts are only used at small sizes and low resolutions,
  53.  *    tuning differences for different output media aren't likely to be
  54.  *    an issue.
  55.  *
  56.  * 3. Xfonts are objects.  They are allocated by their originator, and
  57.  *    (currently) only freed by `restore'.
  58.  *
  59.  * 4. Xfonts are always transformation-specific.  This may lead to some
  60.  *    clutter, but it's very unlikely that a document will have enough
  61.  *    different transformed versions of a single font for this to be a
  62.  *    problem in practice.
  63.  *
  64.  * 5. The transformation matrix is the CTM within the BuildChar or BuildGlyph
  65.  *    procedure.  This maps a 1000x1000 square to the intended character size
  66.  *    (assuming the base font uses the usual 1000-unit scaling).
  67.  */
  68.  
  69. /* The definitions for xfonts are very similar to those for devices. */
  70.  
  71. /* Structure for generic xfonts. */
  72. typedef struct gx_xfont_common_s {
  73.     gx_xfont_procs *procs;
  74. } gx_xfont_common;
  75. /* A generic xfont. */
  76. struct gx_xfont_s {
  77.     gx_xfont_common common;
  78. };
  79.  
  80. /* Definition of xfont procedures. */
  81.  
  82. struct gx_xfont_procs_s {
  83.  
  84.     /* Look up a font name, UniqueID, and matrix, and return */
  85.     /* an xfont. */
  86.  
  87.     /* NOTE: even though this is defined as an xfont_proc, */
  88.     /* it is actually a `factory' procedure, the only one that */
  89.     /* does not take an xfont * as its first argument. */
  90.  
  91. #define xfont_proc_lookup_font(proc)\
  92.   gx_xfont *proc(P7(gx_device *dev, const byte *fname, uint len,\
  93.     int encoding_index, const gs_uid *puid, const gs_matrix *pmat,\
  94.     gs_memory_t *mem))
  95.     xfont_proc_lookup_font((*lookup_font));
  96.  
  97.     /* Convert a character name to an xglyph code. */
  98.     /* encoding_index is 0 for StandardEncoding, */
  99.     /* 1 for ISOLatin1Encoding, 2 for SymbolEncoding, */
  100.     /* and -1 for any other encoding.  Either chr or glyph */
  101.     /* may be absent (gs_no_char/glyph), but not both. */
  102.     /* OBSOLETE as of release 3.43, but still supported. */
  103.  
  104. #define xfont_proc_char_xglyph(proc)\
  105.   gx_xglyph proc(P5(gx_xfont *xf, gs_char chr, int encoding_index,\
  106.     gs_glyph glyph, gs_proc_glyph_name((*glyph_name))))
  107.     xfont_proc_char_xglyph((*char_xglyph));
  108.  
  109.     /* Get the metrics for a character. */
  110.     /* Note: pwidth changed in release 2.9.7. */
  111.  
  112. #define xfont_proc_char_metrics(proc)\
  113.   int proc(P5(gx_xfont *xf, gx_xglyph xg, int wmode,\
  114.     gs_point *pwidth, gs_int_rect *pbbox))
  115.     xfont_proc_char_metrics((*char_metrics));
  116.  
  117.     /* Render a character. */
  118.     /* (x,y) corresponds to the character origin. */
  119.     /* The target may be any Ghostscript device. */
  120.  
  121. #define xfont_proc_render_char(proc)\
  122.   int proc(P7(gx_xfont *xf, gx_xglyph xg, gx_device *target,\
  123.     int x, int y, gx_color_index color, int required))
  124.     xfont_proc_render_char((*render_char));
  125.  
  126.     /* Release any external resources associated with an xfont. */
  127.     /* If mprocs is not NULL, also free any storage */
  128.     /* allocated by lookup_font (including the xfont itself). */
  129.  
  130. #define xfont_proc_release(proc)\
  131.   int proc(P2(gx_xfont *xf, gs_memory_t *mem))
  132.     xfont_proc_release((*release));
  133.  
  134.     /* Convert a character name to an xglyph code. */
  135.     /* This is the same as char_xglyph, except that */
  136.     /* it takes a vector of callback procedures. */
  137.     /* (New in release 3.43.) */
  138.  
  139. #define xfont_proc_char_xglyph2(proc)\
  140.   gx_xglyph proc(P5(gx_xfont *xf, gs_char chr, int encoding_index,\
  141.     gs_glyph glyph, const gx_xfont_callbacks *callbacks))
  142.     xfont_proc_char_xglyph2((*char_xglyph2));
  143.  
  144. };
  145.  
  146. /*
  147.  * Since xfonts are garbage-collectable, they need structure descriptors.
  148.  * Fortunately, the common part of an xfont contains no pointers to
  149.  * GC-managed space, so simple xfonts can use gs_private_st_simple.
  150.  * The following macro will serve for an xfont with only one pointer,
  151.  * to its device:
  152.  */
  153. #define gs__st_dev_ptrs1(scope_st, stname, stype, sname, penum, preloc, de)\
  154.   private ENUM_PTRS_BEGIN(penum) return 0;\
  155.     case 0: ENUM_RETURN(gx_device_enum_ptr((gx_device *)(((stype *)vptr)->de)));\
  156.   ENUM_PTRS_END\
  157.   private RELOC_PTRS_BEGIN(preloc) ;\
  158.     ((stype *)vptr)->de = (void *)gx_device_reloc_ptr((gx_device *)(((stype *)vptr)->de), gcst);\
  159.   RELOC_PTRS_END\
  160.   gs__st_composite_only(scope_st, stname, stype, sname, penum, preloc)
  161. /*
  162.  * We probably don't ever want xfont descriptors to be public....
  163. #define gs_public_st_dev_ptrs1(stname, stype, sname, penum, preloc, de)\
  164.   gs__st_dev_ptrs1(public_st, stname, stype, sname, penum, preloc, de)
  165.  */
  166. #define gs_private_st_dev_ptrs1(stname, stype, sname, penum, preloc, de)\
  167.   gs__st_dev_ptrs1(private_st, stname, stype, sname, penum, preloc, de)
  168.